.-/+oossssoo+/-. x@furaar
`:+ssssssssssssssssss+:` --------
-+ssssssssssssssssssyyssss+- OS: Ubuntu 22.04.4 LTS x86_64
.ossssssssssssssssssdMMMNysssso. Host: redacted
/ssssssssssshdmmNNmmyNMMMMhssssss/ Kernel: 6.5.0-45-generic
+ssssssssshmydMMMMMMMNddddyssssssss+ Uptime: 2 hours, 40 mins Discover gists
Following commands create a shared system-wide install in /opt/q13
The last version that supports MAX7000 (and thus ATF15xx) is 13.0sp1
https://www.intel.com/content/www/us/en/software-kit/711790/intel-quartus-ii-web-edition-design-software-version-13-0sp1-for-linux.html
The variables $Q and $M will be set at the top here but used throughout,
so only paste these commands in the same session where Q and M are set!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "0":{ | |
| "day":{ | |
| "description":"Sunny", | |
| "image":"http://openweathermap.org/img/wn/01d@2x.png" | |
| }, | |
| "night":{ | |
| "description":"Clear", | |
| "image":"http://openweathermap.org/img/wn/01n@2x.png" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use client"; | |
| import { useState } from "react"; | |
| export default function Page() { | |
| const [noCount, setNoCount] = useState(0); | |
| const [yesPressed, setYesPressed] = useState(false); | |
| const yesButtonSize = noCount * 20 + 16; | |
| const handleNoClick = () => { | |
| setNoCount(noCount + 1); |
- Install Claude Code as described here
- Pay for some Anthropic LLM tokens (Start with $20.00 worth)
- Install OpenSpec as described here
- Clone the repo of your choice
- Open the repo in your IDE of choice
- Review this advice from Gemini
- Open a terminal window and type: claude
- Then type /init
- Close the window runnning Claude (so it can see the claude commands created in the next step)
- Open a terminal window and type: openspec init
Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
| Proxy (A-Z) | Methods | Status Code | Override Headers | Exposed Headers | Follow Redirect | Timeout | Size Limit | Rate Limit |
|---|---|---|---|---|---|---|---|---|
| allorigins | ✅ All | ❌ (Always 200) | ❌ | ❌ | ✅ | ❔ | ❔ | 20/min |
| cloudflare-cors-anywhere | ✅ All | ✅ Mirror | ✅ | ✅ | ❌ | ❔ | ❔ | ❔ |
| codetabs | ❌ (only GET) | ❌ (Always 200) | ❌ | ❌ | ✅ | ❔ | 625KB | 5/sec |
| cors-anywhere (heroku) | ✅ All | ✅ Mirror | ❔ | ✅ | ✅ (max. 5) | ❔ | ❔ | 50/hour |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ls - The most frequently used command in Linux to list directories | |
| pwd - Print working directory command in Linux | |
| cd - Linux command to navigate through directories | |
| mkdir - Command used to create directories in Linux | |
| mv - Move or rename files in Linux | |
| cp - Similar usage as mv but for copying files in Linux | |
| rm - Delete files or directories | |
| touch - Create blank/empty files | |
| ln - Create symbolic links (shortcuts) to other files | |
| cat - Display file contents on the terminal |
NewerOlder